home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Origami / Sources / src / h / Makefile < prev    next >
Encoding:
Makefile  |  1996-09-27  |  770 b   |  43 lines

  1. COMMON_HDRS=
  2.  
  3. COMMON_OBJS=
  4.  
  5. include ../../Configfile
  6.  
  7. TARGETS=        all lint install deinstall depend clean awk clobber
  8.  
  9. HDRS=        token.h getmsg.h lg.h
  10.  
  11. all:        .origamimsg
  12.  
  13. awk:            .origamimsg $(HDRS)
  14.  
  15. do_check_common: check_common
  16.  
  17. token.h codelg.h:    tokens tok2h.awk
  18.         $(AWK) -f tok2h.awk <tokens
  19.  
  20. lg.h:        lg lg2h.awk
  21.         $(AWK) -f lg2h.awk <lg >lg.h
  22.  
  23. getmsg.h .origamimsg rc_comp_str.h:    msg2dot_h.awk msg
  24.         $(AWK) -f msg2dot_h.awk <msg
  25.  
  26. lint depend pseudo_depend:
  27.  
  28. install:        .origamimsg
  29.         $(FILE_INSTALL) -m 644 .origamimsg $(ORIGAMI_PATH)
  30.  
  31. deinstall:
  32.         rm -f $(ORIGAMI_PATH)/.origamimsg
  33.  
  34. tags:           $(HDRS)
  35.         ctags -t *.h
  36.  
  37. clean:
  38.         rm -f $(HDRS) tags core
  39.  
  40. clobber:        clean
  41.         rm -f .origamimsg token.h codelg.h lg.h getmsg.h rc_comp_str.h
  42. #{{{}}}
  43.